home *** CD-ROM | disk | FTP | other *** search
- # Installation dependent make variables.
- # This configuration is for 'dutedig'.
-
- # full path of the ESPRIT environment
- ESPRITDIR = /users/ericv/esprit
-
- # BDIR : bin directory
- # IDIR : include directory
- # LDIR : library directory
- BDIR = $(ESPRITDIR)/bin
- IDIR = $(ESPRITDIR)/include
- LDIR = $(ESPRITDIR)/lib
-
- NFULLDS = $(ESPRITDIR)/ds/nfullgl.ds
- NKERNDS = $(ESPRITDIR)/ds/nkerngl.ds
- DRAWDS = $(ESPRITDIR)/ds/draw.ds
- FLATDS = $(ESPRITDIR)/ds/flat.ds
-
- # HOSTNAME : name of installation machine.
- HOSTNAME=dutedig
-
- # SYS : name of operating system or machine type
- # BSD For generic BSD systems
- # HPUX For all HP-UX systems
- # SUN For all SUN systems
- # APOLLO For all Apollo systems
- SYS = HPUX
-
- SYSCFLAGS =
- SYSCPROFFLAGS = -G
- SYSCDBUGFLAGS = -g
- SYSLINTFLAGS =
- SYSPFLAGS =
-
- # CLIBLOC : required C libraries
- CLIBLOC = -lmalloc
- LINTLIBLOC =
- PLIBLOC =
-
- # CBADADR : address that will cause a core-dump if read or written.
- CBADADR = 0
-
- # Collection of host dependent make rules.
-
- ### libinstall ###
- # MODULE - module to install
- libinstall:
- cp $(MODULE) $(LDIR)/$(MODULE)
-
- ### includeinstall ###
- # MODULE - module to install
- includeinstall:
- cp $(MODULE) $(IDIR)/$(MODULE)
-
- ### maninstall ###
- # MAN - manual page to install
- maninstall:
- cp $(MAN) /usr/man/manl
-
- ### bininstall ###
- # MODULE - module to install
- bininstall:
- cp $(MODULE) $(BDIR)/$(MODULE)
- strip $(BDIR)/$(MODULE)
-
- ### arlibinstall ###
- # MODULE - module to install
- arlibinstall:
- cp $(MODULE) $(LDIR)/$(MODULE)
- LINK.c = $(CC) $(CFLAGS)
-